- It's just like a Mac! Well, sort of. There's less juggling.
- API call to create offscreen: WinCreateOffscreenWindow
gOffscreenSourceWindow = WinCreateOffscreenWindow( 160, 160, genericFormat, &err );
- Explicitly set drawing window to be one of the offscreen windows
tempWin = WinSetDrawWindow( gOffscreenSourceWindow ); // Returns current draw window.
- Transferring bitmaps to a window is easy.
WinDrawBitmap( bitmapP, 0, 0 );
- Drawing primitives is just as easy.
WinDrawLine( left, top, left, top + 110 );